博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
DedeCMS中channelartlist自增参数global.itemindex
阅读量:6837 次
发布时间:2019-06-26

本文共 1996 字,大约阅读时间需要 6 分钟。

在 dede:channelartlist 标签下,使用:

{
dede:global.itemindex runphp='yes'} { /dede:global.itemindex}

 

dede:channel标签下,使用:

[field:global name=autoindex runphp="yes"][/field:global][field:typename/]

 

从网上查到更详细的使用说明:

让dedecms autoindex,itemindex 从0到1开始的办法

[field:global name=autoindex runphp="yes"]@me=@me+1;[/field:global] {dede:global name=itemindex runphp="yes"}@me=@me+1;{/dede:global}

 

autoindex itemindex 的使用心得区别

channelartlist 标签下使用

{
dede:global name='itemindex' runphp='yes'}@me;{/dede:global}

 

自增1

arclist 标签下使用 [field:global.autoindex/] 默认从1开始channel 标签下使用 [field:global.autoindex/] 默认从0开始channelartlist 标签下使用 { dede:global.itemindex/} 默认从1开始

 

arclist 从0开始

[field:global name=autoindex runphp="yes"]@me=@me-1;[/field:global]

 

channel 从1开始

[field:global name=autoindex runphp="yes"]@me=@me+1;[/field:global][field:typename/]

 

channelartlist 从0开始{dede:global name=itemindex runphp=’yes’}@me=@me-1;{/dede:global}

{dede:channelartlist notypeid='123,124,146,147'} {dede:php}if($refObj->Fields['ispart']){echo $refObj->Fields['typename'];}{ /dede:php}  { /dede:channelartlist}

 

标签下使用 [field:global name=autoindex/]

channel实例

{dede:channel titlelen='32'}
  • [field:typename/]

  • {/dede:channel}

     

    在arclist中使用autoindex runphp 时用这种方式:

    {
    dede:arclist titlelen='22' row='4' flag='c' orderby='id'} [field:title /] [field:global name='autoindex' runphp='yes']if(@me==2){ @me="
    ";}else{ @me=' ';}[/field:global]{/dede:arclist}

     

     

    自增1

    [field:global.autoindex/]

    arclist实例

    {dede:arclist channelid=17 row=6 orderby=pubdate titlelen=40 addfields='docphoto,docjob,doctec' typeid='123,136,146,155,172,182,202'} 
    [field:fulltitle/]
    {/dede:arclist}

     

    如何自由定义 开始的数字

    autoindex/itemindex 可以使用 @me+1;实现由指定数字开始

    遇到类似的问题做下这个笔记,在用到的时候可以灵活发挥!

    list 标签下试用autoindex

    {dede:list pagesize='40' orderby='id'}[field:global name='autoindex' runphp='yes']if(@me%10==0){ @me="test";}else{ @me='';}[/field:global] {/dede:list} 文章来源:https://blog.csdn.net/langyu1021/article/details/78039962

    转载于:https://www.cnblogs.com/xiaomifeng/p/9958729.html

    你可能感兴趣的文章
    原来JScript中的关键字'var'还是有文章的
    查看>>
    JPA的事务注解@Transactional使用总结
    查看>>
    定时组件quartz系列<二>quartz的集群原理
    查看>>
    nuget常用命令
    查看>>
    圣诞节,把你的 JavaScript 代码都装扮成圣诞树吧
    查看>>
    适用于仪表盘项目的7个优秀JavaScript库
    查看>>
    丘吉尔与数据分析
    查看>>
    如何在Ubuntu以及Debian中安装DHCP服务器
    查看>>
    Linux基础命令介绍六:网络
    查看>>
    哪些智能家居产品最易遭受入侵?
    查看>>
    小练习6:统计出现最多的字母和次数
    查看>>
    CVPR 2018|Cascade R-CNN:向高精度目标检测器迈进
    查看>>
    阿拉伯数字转换成中文大写,中文货币的表达方式 python
    查看>>
    JS function
    查看>>
    《统一沟通-微软-实战》-3-部署-Exchange 2010-3-证书-创建-导入-分配
    查看>>
    shiro是如何实现httpsession的操作的
    查看>>
    我的友情链接
    查看>>
    solaris文件系统的一些理解
    查看>>
    SCCM 2012系列之新特性概览一:SCCM 2012安装选项和控制台新界面预览
    查看>>
    快排算法
    查看>>